-
Notifications
You must be signed in to change notification settings - Fork 308
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ソング:labファイルを書き出す機能を追加 #2383
base: main
Are you sure you want to change the base?
ソング:labファイルを書き出す機能を追加 #2383
Conversation
🚀 プレビュー用ページを作成しました 🚀 更新時点でのコミットハッシュ: |
// REVIEW: vowel != "N" のときに vowel.toLowerCase() する必要がある…? | ||
writeLine(phoneme.frameLength / frameRate, phoneme.phoneme); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
トークはvowel != "N"
のときに vowel.toLowerCase()
する実装になっていました。
ソングは必要なさそう…?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
うーーーーーーん!!! 知らなかった・・・!!!
ユーザー的にはどちらでも良さそう。
ただまあ仕様は揃えてあげた方が良さそうなのと、大文字の時は無声というのは若干特殊な気がしないでもないので、母音のaiueoにしちゃって良さそうに感じました!
もしトーク側が未実装だったら、大文字のままにした方が良いかもですね!
(でももしかしたら既存ソフトに合わせてる可能性もありそう。)
// 「ファイル」メニュー | ||
const fileSubMenuData = computed<MenuItemData[]>(() => [ | ||
{ | ||
type: "button", | ||
label: "音声を出力", | ||
label: "音声書き出し", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
トーク側と合わせました。
ちょっと実際に動かしてみて挙動だけチェックさせていただきました! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
メッセージの部分だけ差し替えられるようにすれば共通化できそう?
Container/PresentationのContainerが音声用とlab用とで2個ある形でも、SingEditorから差し込む形でも。
内容
labファイルを書き出す機能を追加します。
書き出し対象のトラックを指定できた方が良いと思いますが、ひとまず全てのトラックを対象として書き出す形で実装しています。
関連 Issue
その他